iT邦幫忙

2018 iT 邦幫忙鐵人賽
DAY 19
0
Modern Web

30天React從入門到入坑系列 第 19

DAY19:React Webpack say Hello(設定檔)

  • 分享至 

  • xImage
  •  

webpack為JavaScript應用程式靜態模塊打包工具(module bundler)。當webpack處理應用程式,它會遞回建立依懶關係圖(dependency graph),其中包含應用程序需要的模塊,然後將所有模塊打包成一個或多個檔案(bundles)。

webpack有四個主要核心概念:

  • Entry(入口,打包進入點)
  • Output(出口,打包bundles檔案位置)
  • Loaders(轉換文件成為webpack讓夠處理的模塊,例:es6轉換es5、jsx轉換為js)
  • Plugins(用來轉換某些特殊類型的模塊,例:打包優化、壓縮)

Babel is a JavaScript compiler
官網標題說明一切,babel可用來轉換js或編譯為webpack可讀js程式碼,webpack才能進行後續的js打包。

建立專案安裝所需模組
mkdir react-webpack
cd .\react-webpack\
npm install webpack webpack-dev-server --save-dev
npm install babel babel-core babel-loader babel-preset-es2015 babel-preset-react --save-dev
npm install react react-dom --save

指令裡的參數:安裝同時要求將模組名稱及版本自動加入到package.json中
--save 加入到package.json中的dependencies參數
--save-dev 加入到package.json中的devDependencies參數


加入webpack.config.js執行打包預設執行的設定檔

  • entry告訴webpack要打包的檔案
  • output打包後輸出的資料夾與檔名
  • devServer啟動測試server,包含的靜態檔案

loaders

  • test用正規表示法設定要load的檔案,通常設定要符合的副檔名
  • exclude用正規表示法或直接設定去除load的路徑
  • babel-preset-es2015 ES6語法轉譯成ES5
  • babel-preset-react將React轉譯為js
webpack.config.js

var path = require('path');

module.exports = {
    entry: [path.resolve(__dirname, 'src/index.js')],
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'bundle.js'
    },
    devServer: {
      contentBase: path.join(__dirname, "dist"),
      port: 8080
    },
    module: {
        loaders: [
          {
              test: /\.jsx?$/,
              exclude: /node_modules/,
              loader: "babel-loader",
              query: {
                presets:['es2015', 'react']
              }
          }
        ]
    }
};

package.json專案模塊資訊,再這可加入scripts使用npm run可以直接執行。

  • npm run build執行webpack打包
  • npm run dev啟動測試server(--progress --colors 輸出執行進度到console)

webpack DevServer(參數資訊)
https://webpack.js.org/configuration/dev-server/

package.json

{
  "name": "react-webpack",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "webpack",
    "dev": "webpack-dev-server --devtool eval --progress --colors"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel": "^6.23.0",
    "babel-core": "^6.26.0",
    "babel-loader": "^7.1.2",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.24.1",
    "webpack": "^3.10.0",
    "webpack-dev-server": "^2.10.0"
  },
  "dependencies": {
    "react": "^16.2.0",
    "react-dom": "^16.2.0"
  }
}

本篇先介紹webpack設定檔,下篇說明檔案結構與執行結果


上一篇
DAY18:ajax fatch & react-axios
下一篇
DAY20:React Webpack say Hello(檔案結構、輸出)
系列文
30天React從入門到入坑30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言